Interface Secret.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Secret.Builder,Secret>,SdkBuilder<Secret.Builder,Secret>,SdkPojo
- Enclosing class:
- Secret
public static interface Secret.Builder extends SdkPojo, CopyableBuilder<Secret.Builder,Secret>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Secret.Buildername(String name)The name of the secret.Secret.BuildervalueFrom(String valueFrom)The secret to expose to the container.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
name
Secret.Builder name(String name)
The name of the secret.
- Parameters:
name- The name of the secret.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
valueFrom
Secret.Builder valueFrom(String valueFrom)
The secret to expose to the container. The supported values are either the full ARN of the Secrets Manager secret or the full ARN of the parameter in the SSM Parameter Store.
For information about the require Identity and Access Management permissions, see Required IAM permissions for Amazon ECS secrets (for Secrets Manager) or Required IAM permissions for Amazon ECS secrets (for Systems Manager Parameter store) in the Amazon Elastic Container Service Developer Guide.
If the SSM Parameter Store parameter exists in the same Region as the task you're launching, then you can use either the full ARN or name of the parameter. If the parameter exists in a different Region, then the full ARN must be specified.
- Parameters:
valueFrom- The secret to expose to the container. The supported values are either the full ARN of the Secrets Manager secret or the full ARN of the parameter in the SSM Parameter Store.For information about the require Identity and Access Management permissions, see Required IAM permissions for Amazon ECS secrets (for Secrets Manager) or Required IAM permissions for Amazon ECS secrets (for Systems Manager Parameter store) in the Amazon Elastic Container Service Developer Guide.
If the SSM Parameter Store parameter exists in the same Region as the task you're launching, then you can use either the full ARN or name of the parameter. If the parameter exists in a different Region, then the full ARN must be specified.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-