interface CreatedByInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnMetricPropsMixin.CreatedByInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnMetricPropsMixin_CreatedByInfoProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnMetricPropsMixin.CreatedByInfoProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnMetricPropsMixin.CreatedByInfoProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnMetricPropsMixin » CreatedByInfoProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const createdByInfoProperty: connect.CfnMetricPropsMixin.CreatedByInfoProperty = {
awsIdentityArn: 'awsIdentityArn',
connectUserArn: 'connectUserArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | STS or IAM ARN representing the identity of API Caller. |
| connect | string | An agent ARN representing a connect user. |
awsIdentityArn?
Type:
string
(optional)
STS or IAM ARN representing the identity of API Caller.
SDK users cannot populate this and this value is calculated automatically if ConnectUserArn is not provided.
connectUserArn?
Type:
string
(optional)
An agent ARN representing a connect user.

.NET
Go
Java
Python
TypeScript