Documentation
¶
Index ¶
- func CfnAutomationRule_CFN_RESOURCE_TYPE_NAME() *string
- func CfnAutomationRule_IsCfnAutomationRule(x interface{}) *bool
- func CfnAutomationRule_IsCfnElement(x interface{}) *bool
- func CfnAutomationRule_IsCfnResource(x interface{}) *bool
- func CfnAutomationRule_IsConstruct(x interface{}) *bool
- func NewCfnAutomationRule_Override(c CfnAutomationRule, scope constructs.Construct, id *string, ...)
- type CfnAutomationRule
- type CfnAutomationRuleProps
- type CfnAutomationRule_CriteriaProperty
- type CfnAutomationRule_DoubleCriteriaConditionProperty
- type CfnAutomationRule_IntegerCriteriaConditionProperty
- type CfnAutomationRule_OrganizationConfigurationProperty
- type CfnAutomationRule_ResourceTagsCriteriaConditionProperty
- type CfnAutomationRule_ScheduleProperty
- type CfnAutomationRule_StringCriteriaConditionProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnAutomationRule_CFN_RESOURCE_TYPE_NAME ¶
func CfnAutomationRule_CFN_RESOURCE_TYPE_NAME() *string
func CfnAutomationRule_IsCfnAutomationRule ¶
func CfnAutomationRule_IsCfnAutomationRule(x interface{}) *bool
Checks whether the given object is a CfnAutomationRule.
func CfnAutomationRule_IsCfnElement ¶
func CfnAutomationRule_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element.
func CfnAutomationRule_IsCfnResource ¶
func CfnAutomationRule_IsCfnResource(x interface{}) *bool
Check whether the given object is a CfnResource.
func CfnAutomationRule_IsConstruct ¶
func CfnAutomationRule_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Use this method instead of `instanceof` to properly detect `Construct` instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the `constructs` library on disk are seen as independent, completely different libraries. As a consequence, the class `Construct` in each copy of the `constructs` library is seen as a different class, and an instance of one class will not test as `instanceof` the other class. `npm install` will not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of the `constructs` library can be accidentally installed, and `instanceof` will behave unpredictably. It is safest to avoid using `instanceof`, and using this type-testing method instead.
Returns: true if `x` is an object created from a class which extends `Construct`.
func NewCfnAutomationRule_Override ¶
func NewCfnAutomationRule_Override(c CfnAutomationRule, scope constructs.Construct, id *string, props *CfnAutomationRuleProps)
Create a new `AWS::ComputeOptimizer::AutomationRule`.
Types ¶
type CfnAutomationRule ¶
type CfnAutomationRule interface {
awscdk.CfnResource
awscdk.IInspectable
interfacesawscomputeoptimizer.IAutomationRuleRef
awscdk.ITaggableV2
// The AWS account ID that owns the automation rule.
AttrAccountId() *string
// The timestamp when the automation rule was created.
AttrCreatedTimestamp() *string
// The timestamp when the automation rule was last updated.
AttrLastUpdatedTimestamp() *string
// The Amazon Resource Name (ARN) of the automation rule.
AttrRuleArn() *string
// The unique identifier of the automation rule.
AttrRuleId() *string
// The revision number of the automation rule.
AttrRuleRevision() *string
// A reference to a AutomationRule resource.
AutomationRuleRef() *interfacesawscomputeoptimizer.AutomationRuleReference
// Tag Manager which manages the tags for this resource.
CdkTagManager() awscdk.TagManager
// Options for this resource, such as condition, update policy etc.
CfnOptions() awscdk.ICfnResourceOptions
CfnProperties() *map[string]interface{}
CfnPropertyNames() *map[string]*string
// AWS resource type.
CfnResourceType() *string
// Returns: the stack trace of the point where this Resource was created from, sourced
// from the +metadata+ entry typed +aws:cdk:logicalId+, and with the bottom-most
// node +internal+ entries filtered.
CreationStack() *[]*string
Criteria() interface{}
SetCriteria(val interface{})
// The description of the automation rule.
Description() *string
SetDescription(val *string)
Env() *interfaces.ResourceEnvironment
// The logical ID for this CloudFormation stack element.
//
// The logical ID of the element
// is calculated from the path of the resource node in the construct tree.
//
// To override this value, use `overrideLogicalId(newLogicalId)`.
//
// Returns: the logical ID as a stringified token. This value will only get
// resolved during synthesis.
LogicalId() *string
// The name of the automation rule.
Name() *string
SetName(val *string)
// The tree node.
Node() constructs.Node
OrganizationConfiguration() interface{}
SetOrganizationConfiguration(val interface{})
// Rule priority within its group.
Priority() *string
SetPriority(val *string)
// The types of recommended actions this rule will implement.
RecommendedActionTypes() *[]*string
SetRecommendedActionTypes(val *[]*string)
// Return a string that will be resolved to a CloudFormation `{ Ref }` for this element.
//
// If, by any chance, the intrinsic reference of a resource is not a string, you could
// coerce it to an IResolvable through `Lazy.any({ produce: resource.ref })`.
Ref() *string
// The type of automation rule.
RuleType() *string
SetRuleType(val *string)
Schedule() interface{}
SetSchedule(val interface{})
// The stack in which this element is defined.
//
// CfnElements must be defined within a stack scope (directly or indirectly).
Stack() awscdk.Stack
// The status of the automation rule.
Status() *string
SetStatus(val *string)
// Tags associated with the automation rule.
Tags() *[]*awscdk.CfnTag
SetTags(val *[]*awscdk.CfnTag)
// Deprecated.
// Deprecated: use `updatedProperties`
//
// Return properties modified after initiation
//
// Resources that expose mutable properties should override this function to
// collect and return the properties object for this resource.
UpdatedProperites() *map[string]interface{}
// Return properties modified after initiation.
//
// Resources that expose mutable properties should override this function to
// collect and return the properties object for this resource.
UpdatedProperties() *map[string]interface{}
// Syntactic sugar for `addOverride(path, undefined)`.
AddDeletionOverride(path *string)
// Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned.
//
// This can be used for resources across stacks (or nested stack) boundaries
// and the dependency will automatically be transferred to the relevant scope.
AddDependency(target awscdk.CfnResource)
// Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned.
// Deprecated: use addDependency.
AddDependsOn(target awscdk.CfnResource)
// Add a value to the CloudFormation Resource Metadata.
// See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/metadata-section-structure.html
//
// Note that this is a different set of metadata from CDK node metadata; this
// metadata ends up in the stack template under the resource, whereas CDK
// node metadata ends up in the Cloud Assembly.
//
AddMetadata(key *string, value interface{})
// Adds an override to the synthesized CloudFormation resource.
//
// To add a
// property override, either use `addPropertyOverride` or prefix `path` with
// "Properties." (i.e. `Properties.TopicName`).
//
// If the override is nested, separate each nested level using a dot (.) in the path parameter.
// If there is an array as part of the nesting, specify the index in the path.
//
// To include a literal `.` in the property name, prefix with a `\`. In most
// programming languages you will need to write this as `"\\."` because the
// `\` itself will need to be escaped.
//
// For example,
// “`typescript
// cfnResource.addOverride('Properties.GlobalSecondaryIndexes.0.Projection.NonKeyAttributes', ['myattribute']);
// cfnResource.addOverride('Properties.GlobalSecondaryIndexes.1.ProjectionType', 'INCLUDE');
// “`
// would add the overrides
// “`json
// "Properties": {
// "GlobalSecondaryIndexes": [
// {
// "Projection": {
// "NonKeyAttributes": [ "myattribute" ]
// ...
// }
// ...
// },
// {
// "ProjectionType": "INCLUDE"
// ...
// },
// ]
// ...
// }
// “`
//
// The `value` argument to `addOverride` will not be processed or translated
// in any way. Pass raw JSON values in here with the correct capitalization
// for CloudFormation. If you pass CDK classes or structs, they will be
// rendered with lowercased key names, and CloudFormation will reject the
// template.
AddOverride(path *string, value interface{})
// Adds an override that deletes the value of a property from the resource definition.
AddPropertyDeletionOverride(propertyPath *string)
// Adds an override to a resource property.
//
// Syntactic sugar for `addOverride("Properties.<...>", value)`.
AddPropertyOverride(propertyPath *string, value interface{})
// Sets the cross-stack reference strength for this resource.
//
// When set, any cross-stack reference to this resource will use the specified
// strength instead of the global default from the consuming stack's context.
ApplyCrossStackReferenceStrength(strength awscdk.ReferenceStrength)
// Sets the deletion policy of the resource based on the removal policy specified.
//
// The Removal Policy controls what happens to this resource when it stops
// being managed by CloudFormation, either because you've removed it from the
// CDK application or because you've made a change that requires the resource
// to be replaced.
//
// The resource can be deleted (`RemovalPolicy.DESTROY`), or left in your AWS
// account for data recovery and cleanup later (`RemovalPolicy.RETAIN`). In some
// cases, a snapshot can be taken of the resource prior to deletion
// (`RemovalPolicy.SNAPSHOT`). A list of resources that support this policy
// can be found in the following link:.
// See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html#aws-attribute-deletionpolicy-options
//
ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions)
CfnPropertyName(cdkPropertyName *string) *string
// Returns a token for an runtime attribute of this resource.
//
// Ideally, use generated attribute accessors (e.g. `resource.arn`), but this can be used for future compatibility
// in case there is no generated attribute.
GetAtt(attributeName *string, typeHint awscdk.ResolutionTypeHint) awscdk.Reference
// Retrieve a value value from the CloudFormation Resource Metadata.
// See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/metadata-section-structure.html
//
// Note that this is a different set of metadata from CDK node metadata; this
// metadata ends up in the stack template under the resource, whereas CDK
// node metadata ends up in the Cloud Assembly.
//
GetMetadata(key *string) interface{}
// Examines the CloudFormation resource and discloses attributes.
Inspect(inspector awscdk.TreeInspector)
// Retrieves an array of resources this resource depends on.
//
// This assembles dependencies on resources across stacks (including nested stacks)
// automatically.
ObtainDependencies() *[]interface{}
// Get a shallow copy of dependencies between this resource and other resources in the same stack.
ObtainResourceDependencies() *[]awscdk.CfnResource
// Overrides the auto-generated logical ID with a specific ID.
OverrideLogicalId(newLogicalId *string)
// Indicates that this resource no longer depends on another resource.
//
// This can be used for resources across stacks (including nested stacks)
// and the dependency will automatically be removed from the relevant scope.
RemoveDependency(target awscdk.CfnResource)
RenderProperties(props *map[string]interface{}) *map[string]interface{}
// Replaces one dependency with another.
ReplaceDependency(target awscdk.CfnResource, newTarget awscdk.CfnResource)
// Can be overridden by subclasses to determine if this resource will be rendered into the cloudformation template.
//
// Returns: `true` if the resource should be included or `false` is the resource
// should be omitted.
ShouldSynthesize() *bool
// Returns a string representation of this construct.
//
// Returns: a string representation of this resource.
ToString() *string
ValidateProperties(_properties interface{})
// Applies one or more mixins to this construct.
//
// Mixins are applied in order. The list of constructs is captured at the
// start of the call, so constructs added by a mixin will not be visited.
// Use multiple `with()` calls if subsequent mixins should apply to added
// constructs.
With(mixins ...constructs.IMixin) constructs.IConstruct
}
Creates an AWS Compute Optimizer automation rule that automatically implements recommended actions based on your defined criteria and schedule.
Automation rules are global resources that manage automated actions across all AWS Regions where Compute Optimizer Automation is available. Organization-level rules can only be created by the management account or delegated administrator.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
cfnAutomationRule := awscdk.Aws_computeoptimizer.NewCfnAutomationRule(this, jsii.String("MyCfnAutomationRule"), &CfnAutomationRuleProps{
Name: jsii.String("name"),
RecommendedActionTypes: []*string{
jsii.String("recommendedActionTypes"),
},
RuleType: jsii.String("ruleType"),
Schedule: &ScheduleProperty{
ExecutionWindowInMinutes: jsii.Number(123),
ScheduleExpression: jsii.String("scheduleExpression"),
ScheduleExpressionTimezone: jsii.String("scheduleExpressionTimezone"),
},
Status: jsii.String("status"),
// the properties below are optional
Criteria: &CriteriaProperty{
EbsVolumeSizeInGib: []interface{}{
&IntegerCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []interface{}{
jsii.Number(123),
},
},
},
EbsVolumeType: []interface{}{
&StringCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []*string{
jsii.String("values"),
},
},
},
EstimatedMonthlySavings: []interface{}{
&DoubleCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []interface{}{
jsii.Number(123),
},
},
},
LookBackPeriodInDays: []interface{}{
&IntegerCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []interface{}{
jsii.Number(123),
},
},
},
Region: []interface{}{
&StringCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []*string{
jsii.String("values"),
},
},
},
ResourceArn: []interface{}{
&StringCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []*string{
jsii.String("values"),
},
},
},
ResourceTag: []interface{}{
&ResourceTagsCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Key: jsii.String("key"),
Values: []*string{
jsii.String("values"),
},
},
},
RestartNeeded: []interface{}{
&StringCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []*string{
jsii.String("values"),
},
},
},
},
Description: jsii.String("description"),
OrganizationConfiguration: &OrganizationConfigurationProperty{
AccountIds: []*string{
jsii.String("accountIds"),
},
RuleApplyOrder: jsii.String("ruleApplyOrder"),
},
Priority: jsii.String("priority"),
Tags: []CfnTag{
&CfnTag{
Key: jsii.String("key"),
Value: jsii.String("value"),
},
},
})
func NewCfnAutomationRule ¶
func NewCfnAutomationRule(scope constructs.Construct, id *string, props *CfnAutomationRuleProps) CfnAutomationRule
Create a new `AWS::ComputeOptimizer::AutomationRule`.
type CfnAutomationRuleProps ¶
type CfnAutomationRuleProps struct {
// The name of the automation rule.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-computeoptimizer-automationrule.html#cfn-computeoptimizer-automationrule-name
//
Name *string `field:"required" json:"name" yaml:"name"`
// The types of recommended actions this rule will implement.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-computeoptimizer-automationrule.html#cfn-computeoptimizer-automationrule-recommendedactiontypes
//
RecommendedActionTypes *[]*string `field:"required" json:"recommendedActionTypes" yaml:"recommendedActionTypes"`
// The type of automation rule.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-computeoptimizer-automationrule.html#cfn-computeoptimizer-automationrule-ruletype
//
RuleType *string `field:"required" json:"ruleType" yaml:"ruleType"`
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-computeoptimizer-automationrule.html#cfn-computeoptimizer-automationrule-schedule
//
Schedule interface{} `field:"required" json:"schedule" yaml:"schedule"`
// The status of the automation rule.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-computeoptimizer-automationrule.html#cfn-computeoptimizer-automationrule-status
//
Status *string `field:"required" json:"status" yaml:"status"`
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-computeoptimizer-automationrule.html#cfn-computeoptimizer-automationrule-criteria
//
Criteria interface{} `field:"optional" json:"criteria" yaml:"criteria"`
// The description of the automation rule.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-computeoptimizer-automationrule.html#cfn-computeoptimizer-automationrule-description
//
Description *string `field:"optional" json:"description" yaml:"description"`
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-computeoptimizer-automationrule.html#cfn-computeoptimizer-automationrule-organizationconfiguration
//
OrganizationConfiguration interface{} `field:"optional" json:"organizationConfiguration" yaml:"organizationConfiguration"`
// Rule priority within its group.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-computeoptimizer-automationrule.html#cfn-computeoptimizer-automationrule-priority
//
Priority *string `field:"optional" json:"priority" yaml:"priority"`
// Tags associated with the automation rule.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-computeoptimizer-automationrule.html#cfn-computeoptimizer-automationrule-tags
//
Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"`
}
Properties for defining a `CfnAutomationRule`.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
cfnAutomationRuleProps := &CfnAutomationRuleProps{
Name: jsii.String("name"),
RecommendedActionTypes: []*string{
jsii.String("recommendedActionTypes"),
},
RuleType: jsii.String("ruleType"),
Schedule: &ScheduleProperty{
ExecutionWindowInMinutes: jsii.Number(123),
ScheduleExpression: jsii.String("scheduleExpression"),
ScheduleExpressionTimezone: jsii.String("scheduleExpressionTimezone"),
},
Status: jsii.String("status"),
// the properties below are optional
Criteria: &CriteriaProperty{
EbsVolumeSizeInGib: []interface{}{
&IntegerCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []interface{}{
jsii.Number(123),
},
},
},
EbsVolumeType: []interface{}{
&StringCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []*string{
jsii.String("values"),
},
},
},
EstimatedMonthlySavings: []interface{}{
&DoubleCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []interface{}{
jsii.Number(123),
},
},
},
LookBackPeriodInDays: []interface{}{
&IntegerCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []interface{}{
jsii.Number(123),
},
},
},
Region: []interface{}{
&StringCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []*string{
jsii.String("values"),
},
},
},
ResourceArn: []interface{}{
&StringCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []*string{
jsii.String("values"),
},
},
},
ResourceTag: []interface{}{
&ResourceTagsCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Key: jsii.String("key"),
Values: []*string{
jsii.String("values"),
},
},
},
RestartNeeded: []interface{}{
&StringCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []*string{
jsii.String("values"),
},
},
},
},
Description: jsii.String("description"),
OrganizationConfiguration: &OrganizationConfigurationProperty{
AccountIds: []*string{
jsii.String("accountIds"),
},
RuleApplyOrder: jsii.String("ruleApplyOrder"),
},
Priority: jsii.String("priority"),
Tags: []CfnTag{
&CfnTag{
Key: jsii.String("key"),
Value: jsii.String("value"),
},
},
}
type CfnAutomationRule_CriteriaProperty ¶
type CfnAutomationRule_CriteriaProperty struct {
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-criteria.html#cfn-computeoptimizer-automationrule-criteria-ebsvolumesizeingib
//
EbsVolumeSizeInGib interface{} `field:"optional" json:"ebsVolumeSizeInGib" yaml:"ebsVolumeSizeInGib"`
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-criteria.html#cfn-computeoptimizer-automationrule-criteria-ebsvolumetype
//
EbsVolumeType interface{} `field:"optional" json:"ebsVolumeType" yaml:"ebsVolumeType"`
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-criteria.html#cfn-computeoptimizer-automationrule-criteria-estimatedmonthlysavings
//
EstimatedMonthlySavings interface{} `field:"optional" json:"estimatedMonthlySavings" yaml:"estimatedMonthlySavings"`
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-criteria.html#cfn-computeoptimizer-automationrule-criteria-lookbackperiodindays
//
LookBackPeriodInDays interface{} `field:"optional" json:"lookBackPeriodInDays" yaml:"lookBackPeriodInDays"`
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-criteria.html#cfn-computeoptimizer-automationrule-criteria-region
//
Region interface{} `field:"optional" json:"region" yaml:"region"`
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-criteria.html#cfn-computeoptimizer-automationrule-criteria-resourcearn
//
ResourceArn interface{} `field:"optional" json:"resourceArn" yaml:"resourceArn"`
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-criteria.html#cfn-computeoptimizer-automationrule-criteria-resourcetag
//
ResourceTag interface{} `field:"optional" json:"resourceTag" yaml:"resourceTag"`
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-criteria.html#cfn-computeoptimizer-automationrule-criteria-restartneeded
//
RestartNeeded interface{} `field:"optional" json:"restartNeeded" yaml:"restartNeeded"`
}
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
criteriaProperty := &CriteriaProperty{
EbsVolumeSizeInGib: []interface{}{
&IntegerCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []interface{}{
jsii.Number(123),
},
},
},
EbsVolumeType: []interface{}{
&StringCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []*string{
jsii.String("values"),
},
},
},
EstimatedMonthlySavings: []interface{}{
&DoubleCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []interface{}{
jsii.Number(123),
},
},
},
LookBackPeriodInDays: []interface{}{
&IntegerCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []interface{}{
jsii.Number(123),
},
},
},
Region: []interface{}{
&StringCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []*string{
jsii.String("values"),
},
},
},
ResourceArn: []interface{}{
&StringCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []*string{
jsii.String("values"),
},
},
},
ResourceTag: []interface{}{
&ResourceTagsCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Key: jsii.String("key"),
Values: []*string{
jsii.String("values"),
},
},
},
RestartNeeded: []interface{}{
&StringCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []*string{
jsii.String("values"),
},
},
},
}
type CfnAutomationRule_DoubleCriteriaConditionProperty ¶
type CfnAutomationRule_DoubleCriteriaConditionProperty struct {
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-doublecriteriacondition.html#cfn-computeoptimizer-automationrule-doublecriteriacondition-comparison
//
Comparison *string `field:"optional" json:"comparison" yaml:"comparison"`
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-doublecriteriacondition.html#cfn-computeoptimizer-automationrule-doublecriteriacondition-values
//
Values interface{} `field:"optional" json:"values" yaml:"values"`
}
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
doubleCriteriaConditionProperty := &DoubleCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []interface{}{
jsii.Number(123),
},
}
type CfnAutomationRule_IntegerCriteriaConditionProperty ¶
type CfnAutomationRule_IntegerCriteriaConditionProperty struct {
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-integercriteriacondition.html#cfn-computeoptimizer-automationrule-integercriteriacondition-comparison
//
Comparison *string `field:"optional" json:"comparison" yaml:"comparison"`
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-integercriteriacondition.html#cfn-computeoptimizer-automationrule-integercriteriacondition-values
//
Values interface{} `field:"optional" json:"values" yaml:"values"`
}
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
integerCriteriaConditionProperty := &IntegerCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []interface{}{
jsii.Number(123),
},
}
type CfnAutomationRule_OrganizationConfigurationProperty ¶
type CfnAutomationRule_OrganizationConfigurationProperty struct {
// List of account IDs where the organization rule applies.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-organizationconfiguration.html#cfn-computeoptimizer-automationrule-organizationconfiguration-accountids
//
AccountIds *[]*string `field:"optional" json:"accountIds" yaml:"accountIds"`
// When the rule should be applied relative to account rules.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-organizationconfiguration.html#cfn-computeoptimizer-automationrule-organizationconfiguration-ruleapplyorder
//
RuleApplyOrder *string `field:"optional" json:"ruleApplyOrder" yaml:"ruleApplyOrder"`
}
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
organizationConfigurationProperty := &OrganizationConfigurationProperty{
AccountIds: []*string{
jsii.String("accountIds"),
},
RuleApplyOrder: jsii.String("ruleApplyOrder"),
}
type CfnAutomationRule_ResourceTagsCriteriaConditionProperty ¶
type CfnAutomationRule_ResourceTagsCriteriaConditionProperty struct {
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-resourcetagscriteriacondition.html#cfn-computeoptimizer-automationrule-resourcetagscriteriacondition-comparison
//
Comparison *string `field:"optional" json:"comparison" yaml:"comparison"`
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-resourcetagscriteriacondition.html#cfn-computeoptimizer-automationrule-resourcetagscriteriacondition-key
//
Key *string `field:"optional" json:"key" yaml:"key"`
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-resourcetagscriteriacondition.html#cfn-computeoptimizer-automationrule-resourcetagscriteriacondition-values
//
Values *[]*string `field:"optional" json:"values" yaml:"values"`
}
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
resourceTagsCriteriaConditionProperty := &ResourceTagsCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Key: jsii.String("key"),
Values: []*string{
jsii.String("values"),
},
}
type CfnAutomationRule_ScheduleProperty ¶
type CfnAutomationRule_ScheduleProperty struct {
// Execution window duration in minutes.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-schedule.html#cfn-computeoptimizer-automationrule-schedule-executionwindowinminutes
//
ExecutionWindowInMinutes *float64 `field:"optional" json:"executionWindowInMinutes" yaml:"executionWindowInMinutes"`
// Schedule expression (e.g., cron or rate expression).
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-schedule.html#cfn-computeoptimizer-automationrule-schedule-scheduleexpression
//
ScheduleExpression *string `field:"optional" json:"scheduleExpression" yaml:"scheduleExpression"`
// IANA timezone identifier.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-schedule.html#cfn-computeoptimizer-automationrule-schedule-scheduleexpressiontimezone
//
ScheduleExpressionTimezone *string `field:"optional" json:"scheduleExpressionTimezone" yaml:"scheduleExpressionTimezone"`
}
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
scheduleProperty := &ScheduleProperty{
ExecutionWindowInMinutes: jsii.Number(123),
ScheduleExpression: jsii.String("scheduleExpression"),
ScheduleExpressionTimezone: jsii.String("scheduleExpressionTimezone"),
}
type CfnAutomationRule_StringCriteriaConditionProperty ¶
type CfnAutomationRule_StringCriteriaConditionProperty struct {
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-stringcriteriacondition.html#cfn-computeoptimizer-automationrule-stringcriteriacondition-comparison
//
Comparison *string `field:"optional" json:"comparison" yaml:"comparison"`
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-computeoptimizer-automationrule-stringcriteriacondition.html#cfn-computeoptimizer-automationrule-stringcriteriacondition-values
//
Values *[]*string `field:"optional" json:"values" yaml:"values"`
}
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
stringCriteriaConditionProperty := &StringCriteriaConditionProperty{
Comparison: jsii.String("comparison"),
Values: []*string{
jsii.String("values"),
},
}
Source Files
¶
- CfnAutomationRule.go
- CfnAutomationRuleProps.go
- CfnAutomationRule_CriteriaProperty.go
- CfnAutomationRule_DoubleCriteriaConditionProperty.go
- CfnAutomationRule_IntegerCriteriaConditionProperty.go
- CfnAutomationRule_OrganizationConfigurationProperty.go
- CfnAutomationRule_ResourceTagsCriteriaConditionProperty.go
- CfnAutomationRule_ScheduleProperty.go
- CfnAutomationRule_StringCriteriaConditionProperty.go
- CfnAutomationRule__checks.go
- main.go