ServiceReference
- class aws_cdk.aws_refactorspaces.ServiceReference(*, application_identifier, environment_identifier, service_arn, service_identifier)
Bases:
object
A 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 import aws_refactorspaces as refactorspaces service_reference = 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.