ServiceReference
- class aws_cdk.interfaces.aws_refactorspaces.ServiceReference(*, application_identifier, environment_identifier, service_arn, service_identifier)
Bases:
objectA reference to a Service resource.
- Parameters:
application_identifier (
str) – The ApplicationIdentifier of the Service resource.environment_identifier (
str) – The EnvironmentIdentifier of the Service resource.service_arn (
str) – The ARN of the Service resource.service_identifier (
str) – The ServiceIdentifier of the Service resource.
- 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.interfaces import aws_refactorspaces as interfaces_aws_refactorspaces service_reference = interfaces_aws_refactorspaces.ServiceReference( application_identifier="applicationIdentifier", environment_identifier="environmentIdentifier", service_arn="serviceArn", service_identifier="serviceIdentifier" )
Attributes
- application_identifier
The ApplicationIdentifier of the Service resource.
- environment_identifier
The EnvironmentIdentifier of the Service resource.
- service_arn
The ARN of the Service resource.
- service_identifier
The ServiceIdentifier of the Service resource.