@@ -416,8 +416,9 @@ async def create_job_definition_secrets(
416416 region : Optional [Region ] = None ,
417417 ) -> CreateJobDefinitionSecretsResponse :
418418 """
419- :param job_definition_id: UUID of the job definition to get.
420- :param secrets: Secrets to inject into the job.
419+ Create a secret reference within a job definition.
420+ :param job_definition_id: UUID of the job definition.
421+ :param secrets: List of secrets to inject into the job.
421422 :param region: Region to target. If none is passed will use default region from the config.
422423 :return: :class:`CreateJobDefinitionSecretsResponse <CreateJobDefinitionSecretsResponse>`
423424
@@ -461,8 +462,9 @@ async def get_job_definition_secret(
461462 region : Optional [Region ] = None ,
462463 ) -> Secret :
463464 """
464- :param job_definition_id:
465- :param secret_id:
465+ Get a secret references within a job definition.
466+ :param job_definition_id: UUID of the job definition.
467+ :param secret_id: UUID of the secret reference within the job.
466468 :param region: Region to target. If none is passed will use default region from the config.
467469 :return: :class:`Secret <Secret>`
468470
@@ -498,7 +500,8 @@ async def list_job_definition_secrets(
498500 region : Optional [Region ] = None ,
499501 ) -> ListJobDefinitionSecretsResponse :
500502 """
501- :param job_definition_id:
503+ List secrets references within a job definition.
504+ :param job_definition_id: UUID of the job definition.
502505 :param region: Region to target. If none is passed will use default region from the config.
503506 :return: :class:`ListJobDefinitionSecretsResponse <ListJobDefinitionSecretsResponse>`
504507
@@ -536,13 +539,14 @@ async def update_job_definition_secret(
536539 env_var_name : Optional [str ] = None ,
537540 ) -> Secret :
538541 """
539- :param job_definition_id:
540- :param secret_id:
542+ Update a secret reference within a job definition.
543+ :param job_definition_id: UUID of the job definition.
544+ :param secret_id: UUID of the secret reference within the job.
541545 :param region: Region to target. If none is passed will use default region from the config.
542- :param secret_manager_version:
543- :param path:
546+ :param secret_manager_version: Version of the secret in Secret Manager.
547+ :param path: Path of the secret to mount inside the job (either `path` or `env_var_name` must be set).
544548 One-Of ('secret_config'): at most one of 'path', 'env_var_name' could be set.
545- :param env_var_name:
549+ :param env_var_name: Environment variable name used to expose the secret inside the job (either `path` or `env_var_name` must be set).
546550 One-Of ('secret_config'): at most one of 'path', 'env_var_name' could be set.
547551 :return: :class:`Secret <Secret>`
548552
@@ -590,8 +594,9 @@ async def delete_job_definition_secret(
590594 region : Optional [Region ] = None ,
591595 ) -> None :
592596 """
593- :param job_definition_id:
594- :param secret_id:
597+ Delete a secret reference within a job definition.
598+ :param job_definition_id: UUID of the job definition.
599+ :param secret_id: UUID of the secret reference within the job.
595600 :param region: Region to target. If none is passed will use default region from the config.
596601
597602 Usage:
0 commit comments