CfnServiceMixinProps
- class aws_cdk.mixins_preview.aws_refactorspaces.mixins.CfnServiceMixinProps(*, application_identifier=None, description=None, endpoint_type=None, environment_identifier=None, lambda_endpoint=None, name=None, tags=None, url_endpoint=None, vpc_id=None)
Bases:
objectProperties for CfnServicePropsMixin.
- Parameters:
application_identifier (
Optional[str]) – The unique identifier of the application.description (
Optional[str]) – A description of the service.endpoint_type (
Optional[str]) – The endpoint type of the service.environment_identifier (
Optional[str]) – The unique identifier of the environment.lambda_endpoint (
Union[IResolvable,LambdaEndpointInputProperty,Dict[str,Any],None]) – A summary of the configuration for the AWS Lambda endpoint type.name (
Optional[str]) – The name of the service.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags assigned to the service.url_endpoint (
Union[IResolvable,UrlEndpointInputProperty,Dict[str,Any],None]) – The summary of the configuration for the URL endpoint type.vpc_id (
Optional[str]) – The ID of the virtual private cloud (VPC).
- See:
- 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.mixins_preview.aws_refactorspaces import mixins as refactorspaces_mixins cfn_service_mixin_props = refactorspaces_mixins.CfnServiceMixinProps( application_identifier="applicationIdentifier", description="description", endpoint_type="endpointType", environment_identifier="environmentIdentifier", lambda_endpoint=refactorspaces_mixins.CfnServicePropsMixin.LambdaEndpointInputProperty( arn="arn" ), name="name", tags=[CfnTag( key="key", value="value" )], url_endpoint=refactorspaces_mixins.CfnServicePropsMixin.UrlEndpointInputProperty( health_url="healthUrl", url="url" ), vpc_id="vpcId" )
Attributes
- application_identifier
The unique identifier of the application.
- description
A description of the service.
- endpoint_type
The endpoint type of the service.
- environment_identifier
The unique identifier of the environment.
- lambda_endpoint
A summary of the configuration for the AWS Lambda endpoint type.
- name
The name of the service.
- tags
The tags assigned to the service.
- url_endpoint
The summary of the configuration for the URL endpoint type.
- vpc_id
The ID of the virtual private cloud (VPC).