CredentialSpecConfig

class aws_cdk.aws_ecs.CredentialSpecConfig(*, location, type_prefix)

Bases: object

Configuration for a credential specification (CredSpec) used for a ECS container.

Parameters:
  • location (str) – Location of the CredSpec file.

  • type_prefix (str) – Prefix used for the CredSpec string.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_ecs as ecs

credential_spec_config = ecs.CredentialSpecConfig(
    location="location",
    type_prefix="typePrefix"
)

Attributes

location

Location of the CredSpec file.

type_prefix

Prefix used for the CredSpec string.