Interface CfnBudgetsAction.IDefinitionProperty
The definition is where you specify all of the type-specific parameters.
Namespace: Amazon.CDK.AWS.Budgets
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDefinitionProperty
Syntax (vb)
Public Interface IDefinitionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Budgets;
var definitionProperty = new DefinitionProperty {
IamActionDefinition = new IamActionDefinitionProperty {
PolicyArn = "policyArn",
// the properties below are optional
Groups = new [] { "groups" },
Roles = new [] { "roles" },
Users = new [] { "users" }
},
ScpActionDefinition = new ScpActionDefinitionProperty {
PolicyId = "policyId",
TargetIds = new [] { "targetIds" }
},
SsmActionDefinition = new SsmActionDefinitionProperty {
InstanceIds = new [] { "instanceIds" },
Region = "region",
Subtype = "subtype"
}
};
Synopsis
Properties
Iam |
The AWS Identity and Access Management ( IAM ) action definition details. |
Scp |
The service control policies (SCP) action definition details. |
Ssm |
The Amazon EC2 Systems Manager ( SSM ) action definition details. |
Properties
IamActionDefinition
The AWS Identity and Access Management ( IAM ) action definition details.
virtual object IamActionDefinition { get; }
Property Value
System.
Remarks
ScpActionDefinition
The service control policies (SCP) action definition details.
virtual object ScpActionDefinition { get; }
Property Value
System.
Remarks
SsmActionDefinition
The Amazon EC2 Systems Manager ( SSM ) action definition details.
virtual object SsmActionDefinition { get; }
Property Value
System.