Class: Aws::SecurityHub::Types::AwsCodeBuildProjectEnvironmentRegistryCredential
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsCodeBuildProjectEnvironmentRegistryCredential
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsCodeBuildProjectEnvironmentRegistryCredential data as a hash:
{
credential: "NonEmptyString",
credential_provider: "NonEmptyString",
}
The credentials for access to a private registry.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#credential ⇒ String
The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.
-
#credential_provider ⇒ String
The service that created the credentials to access a private Docker registry.
Instance Attribute Details
#credential ⇒ String
The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager.
2697 2698 2699 2700 2701 2702 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 2697 class AwsCodeBuildProjectEnvironmentRegistryCredential < Struct.new( :credential, :credential_provider) SENSITIVE = [] include Aws::Structure end |
#credential_provider ⇒ String
The service that created the credentials to access a private Docker registry.
The valid value,SECRETS_MANAGER
, is for AWS Secrets Manager.
2697 2698 2699 2700 2701 2702 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 2697 class AwsCodeBuildProjectEnvironmentRegistryCredential < Struct.new( :credential, :credential_provider) SENSITIVE = [] include Aws::Structure end |