interface PhysicalResourceIdProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ResilienceHub.Mixins.CfnAppPropsMixin.PhysicalResourceIdProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsresiliencehub/mixins#CfnAppPropsMixin_PhysicalResourceIdProperty |
Java | software.amazon.awscdk.mixins.preview.services.resiliencehub.mixins.CfnAppPropsMixin.PhysicalResourceIdProperty |
Python | aws_cdk.mixins_preview.aws_resiliencehub.mixins.CfnAppPropsMixin.PhysicalResourceIdProperty |
TypeScript | @aws-cdk/mixins-preview » aws_resiliencehub » mixins » CfnAppPropsMixin » PhysicalResourceIdProperty |
Defines a physical resource identifier.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as resiliencehub_mixins } from '@aws-cdk/mixins-preview/aws-resiliencehub';
const physicalResourceIdProperty: resiliencehub_mixins.CfnAppPropsMixin.PhysicalResourceIdProperty = {
awsAccountId: 'awsAccountId',
awsRegion: 'awsRegion',
identifier: 'identifier',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The AWS account that owns the physical resource. |
| aws | string | The AWS Region that the physical resource is located in. |
| identifier? | string | Identifier of the physical resource. |
| type? | string | Specifies the type of physical resource identifier. |
awsAccountId?
Type:
string
(optional)
The AWS account that owns the physical resource.
awsRegion?
Type:
string
(optional)
The AWS Region that the physical resource is located in.
identifier?
Type:
string
(optional)
Identifier of the physical resource.
type?
Type:
string
(optional)
Specifies the type of physical resource identifier.
Arn - The resource identifier is an Amazon Resource Name (ARN) and it can identify the following list of resources:
AWS::ECS::ServiceAWS::EFS::FileSystemAWS::ElasticLoadBalancingV2::LoadBalancerAWS::Lambda::FunctionAWS::SNS::TopicNative - The resource identifier is an AWS Resilience Hub -native identifier and it can identify the following list of resources:
AWS::ApiGateway::RestApiAWS::ApiGatewayV2::ApiAWS::AutoScaling::AutoScalingGroupAWS::DocDB::DBClusterAWS::DocDB::DBGlobalClusterAWS::DocDB::DBInstanceAWS::DynamoDB::GlobalTableAWS::DynamoDB::TableAWS::EC2::EC2FleetAWS::EC2::InstanceAWS::EC2::NatGatewayAWS::EC2::VolumeAWS::ElasticLoadBalancing::LoadBalancerAWS::RDS::DBClusterAWS::RDS::DBInstanceAWS::RDS::GlobalClusterAWS::Route53::RecordSetAWS::S3::BucketAWS::SQS::Queue

.NET
Go
Java
Python
TypeScript