interface SessionIssuer
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECR.Events.RepositoryEvents.AWSAPICallViaCloudTrail.SessionIssuer |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecr/events#RepositoryEvents_AWSAPICallViaCloudTrail_SessionIssuer |
Java | software.amazon.awscdk.mixins.preview.services.ecr.events.RepositoryEvents.AWSAPICallViaCloudTrail.SessionIssuer |
Python | aws_cdk.mixins_preview.aws_ecr.events.RepositoryEvents.AWSAPICallViaCloudTrail.SessionIssuer |
TypeScript | @aws-cdk/mixins-preview ยป aws_ecr ยป events ยป RepositoryEvents ยป AWSAPICallViaCloudTrail ยป SessionIssuer |
Type definition for SessionIssuer.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as ecr_events } from '@aws-cdk/mixins-preview/aws-ecr';
const sessionIssuer: ecr_events.RepositoryEvents.AWSAPICallViaCloudTrail.SessionIssuer = {
accountId: ['accountId'],
arn: ['arn'],
principalId: ['principalId'],
type: ['type'],
userName: ['userName'],
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string[] | accountId property. |
| arn? | string[] | arn property. |
| principal | string[] | principalId property. |
| type? | string[] | type property. |
| user | string[] | userName property. |
accountId?
Type:
string[]
(optional, default: Do not filter on this field)
accountId property.
Specify an array of string values to match this event if the actual value of accountId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
arn?
Type:
string[]
(optional, default: Do not filter on this field)
arn property.
Specify an array of string values to match this event if the actual value of arn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
principalId?
Type:
string[]
(optional, default: Do not filter on this field)
principalId property.
Specify an array of string values to match this event if the actual value of principalId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
type?
Type:
string[]
(optional, default: Do not filter on this field)
type property.
Specify an array of string values to match this event if the actual value of type is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
userName?
Type:
string[]
(optional, default: Do not filter on this field)
userName property.
Specify an array of string values to match this event if the actual value of userName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript