Documentation
¶
Overview ¶
+kubebuilder:object:generate=true +groupName=sfn.aws.upbound.io +versionName=v1beta2
Index ¶
- Constants
- Variables
- type EncryptionConfigurationInitParameters
- type EncryptionConfigurationObservation
- type EncryptionConfigurationParameters
- type LoggingConfigurationInitParameters
- type LoggingConfigurationObservation
- type LoggingConfigurationParameters
- type StateMachine
- func (in *StateMachine) DeepCopy() *StateMachine
- func (in *StateMachine) DeepCopyInto(out *StateMachine)
- func (in *StateMachine) DeepCopyObject() runtime.Object
- func (mg *StateMachine) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *StateMachine) GetConnectionDetailsMapping() map[string]string
- func (mg *StateMachine) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *StateMachine) GetID() string
- func (tr *StateMachine) GetInitParameters() (map[string]any, error)
- func (mg *StateMachine) GetManagementPolicies() xpv1.ManagementPolicies
- func (tr *StateMachine) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)
- func (tr *StateMachine) GetObservation() (map[string]any, error)
- func (tr *StateMachine) GetParameters() (map[string]any, error)
- func (mg *StateMachine) GetProviderConfigReference() *xpv1.Reference
- func (mg *StateMachine) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *StateMachine) GetTerraformResourceType() string
- func (tr *StateMachine) GetTerraformSchemaVersion() int
- func (mg *StateMachine) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *StateMachine) Hub()
- func (tr *StateMachine) LateInitialize(attrs []byte) (bool, error)
- func (mg *StateMachine) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *StateMachine) SetConditions(c ...xpv1.Condition)
- func (mg *StateMachine) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *StateMachine) SetManagementPolicies(r xpv1.ManagementPolicies)
- func (tr *StateMachine) SetObservation(obs map[string]any) error
- func (tr *StateMachine) SetParameters(params map[string]any) error
- func (mg *StateMachine) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *StateMachine) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *StateMachine) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type StateMachineInitParameters
- type StateMachineList
- type StateMachineObservation
- type StateMachineParameters
- type StateMachineSpec
- type StateMachineStatus
- type TracingConfigurationInitParameters
- type TracingConfigurationObservation
- type TracingConfigurationParameters
Constants ¶
const ( CRDGroup = "sfn.aws.upbound.io" CRDVersion = "v1beta2" )
Package type metadata.
Variables ¶
var ( // CRDGroupVersion is the API Group Version used to register the objects CRDGroupVersion = schema.GroupVersion{Group: CRDGroup, Version: CRDVersion} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: CRDGroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
var ( StateMachine_Kind = "StateMachine" StateMachine_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: StateMachine_Kind}.String() StateMachine_KindAPIVersion = StateMachine_Kind + "." + CRDGroupVersion.String() StateMachine_GroupVersionKind = CRDGroupVersion.WithKind(StateMachine_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type EncryptionConfigurationInitParameters ¶ added in v1.15.0
type EncryptionConfigurationInitParameters struct { // Maximum duration for which Step Functions will reuse data keys. When the period expires, Step Functions will call GenerateDataKey. This setting only applies to customer managed KMS key and does not apply when type is AWS_OWNED_KEY. KMSDataKeyReusePeriodSeconds *float64 `json:"kmsDataKeyReusePeriodSeconds,omitempty" tf:"kms_data_key_reuse_period_seconds,omitempty"` // The alias, alias ARN, key ID, or key ARN of the symmetric encryption KMS key that encrypts the data key. To specify a KMS key in a different AWS account, the customer must use the key ARN or alias ARN. For more information regarding kms_key_id, see KeyId in the KMS documentation. // +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/kms/v1beta1.Key // +crossplane:generate:reference:extractor=github.com/crossplane/upjet/pkg/resource.ExtractParamPath("arn",true) KMSKeyID *string `json:"kmsKeyId,omitempty" tf:"kms_key_id,omitempty"` // Reference to a Key in kms to populate kmsKeyId. // +kubebuilder:validation:Optional KMSKeyIDRef *v1.Reference `json:"kmsKeyIdRef,omitempty" tf:"-"` // Selector for a Key in kms to populate kmsKeyId. // +kubebuilder:validation:Optional KMSKeyIDSelector *v1.Selector `json:"kmsKeyIdSelector,omitempty" tf:"-"` // The encryption option specified for the state machine. Valid values: AWS_OWNED_KEY, CUSTOMER_MANAGED_KMS_KEY Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*EncryptionConfigurationInitParameters) DeepCopy ¶ added in v1.15.0
func (in *EncryptionConfigurationInitParameters) DeepCopy() *EncryptionConfigurationInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptionConfigurationInitParameters.
func (*EncryptionConfigurationInitParameters) DeepCopyInto ¶ added in v1.15.0
func (in *EncryptionConfigurationInitParameters) DeepCopyInto(out *EncryptionConfigurationInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EncryptionConfigurationObservation ¶ added in v1.15.0
type EncryptionConfigurationObservation struct { // Maximum duration for which Step Functions will reuse data keys. When the period expires, Step Functions will call GenerateDataKey. This setting only applies to customer managed KMS key and does not apply when type is AWS_OWNED_KEY. KMSDataKeyReusePeriodSeconds *float64 `json:"kmsDataKeyReusePeriodSeconds,omitempty" tf:"kms_data_key_reuse_period_seconds,omitempty"` // The alias, alias ARN, key ID, or key ARN of the symmetric encryption KMS key that encrypts the data key. To specify a KMS key in a different AWS account, the customer must use the key ARN or alias ARN. For more information regarding kms_key_id, see KeyId in the KMS documentation. KMSKeyID *string `json:"kmsKeyId,omitempty" tf:"kms_key_id,omitempty"` // The encryption option specified for the state machine. Valid values: AWS_OWNED_KEY, CUSTOMER_MANAGED_KMS_KEY Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*EncryptionConfigurationObservation) DeepCopy ¶ added in v1.15.0
func (in *EncryptionConfigurationObservation) DeepCopy() *EncryptionConfigurationObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptionConfigurationObservation.
func (*EncryptionConfigurationObservation) DeepCopyInto ¶ added in v1.15.0
func (in *EncryptionConfigurationObservation) DeepCopyInto(out *EncryptionConfigurationObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EncryptionConfigurationParameters ¶ added in v1.15.0
type EncryptionConfigurationParameters struct { // Maximum duration for which Step Functions will reuse data keys. When the period expires, Step Functions will call GenerateDataKey. This setting only applies to customer managed KMS key and does not apply when type is AWS_OWNED_KEY. // +kubebuilder:validation:Optional KMSDataKeyReusePeriodSeconds *float64 `json:"kmsDataKeyReusePeriodSeconds,omitempty" tf:"kms_data_key_reuse_period_seconds,omitempty"` // The alias, alias ARN, key ID, or key ARN of the symmetric encryption KMS key that encrypts the data key. To specify a KMS key in a different AWS account, the customer must use the key ARN or alias ARN. For more information regarding kms_key_id, see KeyId in the KMS documentation. // +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/kms/v1beta1.Key // +crossplane:generate:reference:extractor=github.com/crossplane/upjet/pkg/resource.ExtractParamPath("arn",true) // +kubebuilder:validation:Optional KMSKeyID *string `json:"kmsKeyId,omitempty" tf:"kms_key_id,omitempty"` // Reference to a Key in kms to populate kmsKeyId. // +kubebuilder:validation:Optional KMSKeyIDRef *v1.Reference `json:"kmsKeyIdRef,omitempty" tf:"-"` // Selector for a Key in kms to populate kmsKeyId. // +kubebuilder:validation:Optional KMSKeyIDSelector *v1.Selector `json:"kmsKeyIdSelector,omitempty" tf:"-"` // The encryption option specified for the state machine. Valid values: AWS_OWNED_KEY, CUSTOMER_MANAGED_KMS_KEY // +kubebuilder:validation:Optional Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*EncryptionConfigurationParameters) DeepCopy ¶ added in v1.15.0
func (in *EncryptionConfigurationParameters) DeepCopy() *EncryptionConfigurationParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptionConfigurationParameters.
func (*EncryptionConfigurationParameters) DeepCopyInto ¶ added in v1.15.0
func (in *EncryptionConfigurationParameters) DeepCopyInto(out *EncryptionConfigurationParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LoggingConfigurationInitParameters ¶
type LoggingConfigurationInitParameters struct { // Determines whether execution data is included in your log. When set to false, data is excluded. IncludeExecutionData *bool `json:"includeExecutionData,omitempty" tf:"include_execution_data,omitempty"` // Defines which category of execution history events are logged. Valid values: ALL, ERROR, FATAL, OFF Level *string `json:"level,omitempty" tf:"level,omitempty"` // Amazon Resource Name (ARN) of a CloudWatch log group. Make sure the State Machine has the correct IAM policies for logging. The ARN must end with :* LogDestination *string `json:"logDestination,omitempty" tf:"log_destination,omitempty"` }
func (*LoggingConfigurationInitParameters) DeepCopy ¶
func (in *LoggingConfigurationInitParameters) DeepCopy() *LoggingConfigurationInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoggingConfigurationInitParameters.
func (*LoggingConfigurationInitParameters) DeepCopyInto ¶
func (in *LoggingConfigurationInitParameters) DeepCopyInto(out *LoggingConfigurationInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LoggingConfigurationObservation ¶
type LoggingConfigurationObservation struct { // Determines whether execution data is included in your log. When set to false, data is excluded. IncludeExecutionData *bool `json:"includeExecutionData,omitempty" tf:"include_execution_data,omitempty"` // Defines which category of execution history events are logged. Valid values: ALL, ERROR, FATAL, OFF Level *string `json:"level,omitempty" tf:"level,omitempty"` // Amazon Resource Name (ARN) of a CloudWatch log group. Make sure the State Machine has the correct IAM policies for logging. The ARN must end with :* LogDestination *string `json:"logDestination,omitempty" tf:"log_destination,omitempty"` }
func (*LoggingConfigurationObservation) DeepCopy ¶
func (in *LoggingConfigurationObservation) DeepCopy() *LoggingConfigurationObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoggingConfigurationObservation.
func (*LoggingConfigurationObservation) DeepCopyInto ¶
func (in *LoggingConfigurationObservation) DeepCopyInto(out *LoggingConfigurationObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LoggingConfigurationParameters ¶
type LoggingConfigurationParameters struct { // Determines whether execution data is included in your log. When set to false, data is excluded. // +kubebuilder:validation:Optional IncludeExecutionData *bool `json:"includeExecutionData,omitempty" tf:"include_execution_data,omitempty"` // Defines which category of execution history events are logged. Valid values: ALL, ERROR, FATAL, OFF // +kubebuilder:validation:Optional Level *string `json:"level,omitempty" tf:"level,omitempty"` // Amazon Resource Name (ARN) of a CloudWatch log group. Make sure the State Machine has the correct IAM policies for logging. The ARN must end with :* // +kubebuilder:validation:Optional LogDestination *string `json:"logDestination,omitempty" tf:"log_destination,omitempty"` }
func (*LoggingConfigurationParameters) DeepCopy ¶
func (in *LoggingConfigurationParameters) DeepCopy() *LoggingConfigurationParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoggingConfigurationParameters.
func (*LoggingConfigurationParameters) DeepCopyInto ¶
func (in *LoggingConfigurationParameters) DeepCopyInto(out *LoggingConfigurationParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StateMachine ¶
type StateMachine struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` // +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.definition) || (has(self.initProvider) && has(self.initProvider.definition))",message="spec.forProvider.definition is a required parameter" Spec StateMachineSpec `json:"spec"` Status StateMachineStatus `json:"status,omitempty"` }
StateMachine is the Schema for the StateMachines API. Provides a Step Function State Machine resource. +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,aws}
func (*StateMachine) DeepCopy ¶
func (in *StateMachine) DeepCopy() *StateMachine
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachine.
func (*StateMachine) DeepCopyInto ¶
func (in *StateMachine) DeepCopyInto(out *StateMachine)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*StateMachine) DeepCopyObject ¶
func (in *StateMachine) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*StateMachine) GetCondition ¶
func (mg *StateMachine) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this StateMachine.
func (*StateMachine) GetConnectionDetailsMapping ¶
func (tr *StateMachine) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this StateMachine
func (*StateMachine) GetDeletionPolicy ¶
func (mg *StateMachine) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this StateMachine.
func (*StateMachine) GetID ¶
func (tr *StateMachine) GetID() string
GetID returns ID of underlying Terraform resource of this StateMachine
func (*StateMachine) GetInitParameters ¶
func (tr *StateMachine) GetInitParameters() (map[string]any, error)
GetInitParameters of this StateMachine
func (*StateMachine) GetManagementPolicies ¶
func (mg *StateMachine) GetManagementPolicies() xpv1.ManagementPolicies
GetManagementPolicies of this StateMachine.
func (*StateMachine) GetMergedParameters ¶
func (tr *StateMachine) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)
GetInitParameters of this StateMachine
func (*StateMachine) GetObservation ¶
func (tr *StateMachine) GetObservation() (map[string]any, error)
GetObservation of this StateMachine
func (*StateMachine) GetParameters ¶
func (tr *StateMachine) GetParameters() (map[string]any, error)
GetParameters of this StateMachine
func (*StateMachine) GetProviderConfigReference ¶
func (mg *StateMachine) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this StateMachine.
func (*StateMachine) GetPublishConnectionDetailsTo ¶
func (mg *StateMachine) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this StateMachine.
func (*StateMachine) GetTerraformResourceType ¶
func (mg *StateMachine) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this StateMachine
func (*StateMachine) GetTerraformSchemaVersion ¶
func (tr *StateMachine) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*StateMachine) GetWriteConnectionSecretToReference ¶
func (mg *StateMachine) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this StateMachine.
func (*StateMachine) LateInitialize ¶
func (tr *StateMachine) LateInitialize(attrs []byte) (bool, error)
LateInitialize this StateMachine using its observed tfState. returns True if there are any spec changes for the resource.
func (*StateMachine) ResolveReferences ¶
func (*StateMachine) SetConditions ¶
func (mg *StateMachine) SetConditions(c ...xpv1.Condition)
SetConditions of this StateMachine.
func (*StateMachine) SetDeletionPolicy ¶
func (mg *StateMachine) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this StateMachine.
func (*StateMachine) SetManagementPolicies ¶
func (mg *StateMachine) SetManagementPolicies(r xpv1.ManagementPolicies)
SetManagementPolicies of this StateMachine.
func (*StateMachine) SetObservation ¶
func (tr *StateMachine) SetObservation(obs map[string]any) error
SetObservation for this StateMachine
func (*StateMachine) SetParameters ¶
func (tr *StateMachine) SetParameters(params map[string]any) error
SetParameters for this StateMachine
func (*StateMachine) SetProviderConfigReference ¶
func (mg *StateMachine) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this StateMachine.
func (*StateMachine) SetPublishConnectionDetailsTo ¶
func (mg *StateMachine) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this StateMachine.
func (*StateMachine) SetWriteConnectionSecretToReference ¶
func (mg *StateMachine) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this StateMachine.
type StateMachineInitParameters ¶
type StateMachineInitParameters struct { // The Amazon States Language definition of the state machine. Definition *string `json:"definition,omitempty" tf:"definition,omitempty"` // Defines what encryption configuration is used to encrypt data in the State Machine. For more information see [TBD] in the AWS Step Functions User Guide. EncryptionConfiguration *EncryptionConfigurationInitParameters `json:"encryptionConfiguration,omitempty" tf:"encryption_configuration,omitempty"` // Defines what execution history events are logged and where they are logged. The logging_configuration parameter is valid when type is set to STANDARD or EXPRESS. Defaults to OFF. For more information see Logging Express Workflows, Log Levels and Logging Configuration in the AWS Step Functions User Guide. LoggingConfiguration *LoggingConfigurationInitParameters `json:"loggingConfiguration,omitempty" tf:"logging_configuration,omitempty"` // Set to true to publish a version of the state machine during creation. Default: false. Publish *bool `json:"publish,omitempty" tf:"publish,omitempty"` // The Amazon Resource Name (ARN) of the IAM role to use for this state machine. // +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/iam/v1beta1.Role // +crossplane:generate:reference:extractor=github.com/upbound/provider-aws/config/common.ARNExtractor() RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"` // Reference to a Role in iam to populate roleArn. // +kubebuilder:validation:Optional RoleArnRef *v1.Reference `json:"roleArnRef,omitempty" tf:"-"` // Selector for a Role in iam to populate roleArn. // +kubebuilder:validation:Optional RoleArnSelector *v1.Selector `json:"roleArnSelector,omitempty" tf:"-"` // Key-value map of resource tags. // +mapType=granular Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` // Selects whether AWS X-Ray tracing is enabled. TracingConfiguration *TracingConfigurationInitParameters `json:"tracingConfiguration,omitempty" tf:"tracing_configuration,omitempty"` // Determines whether a Standard or Express state machine is created. The default is STANDARD. You cannot update the type of a state machine once it has been created. Valid values: STANDARD, EXPRESS. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*StateMachineInitParameters) DeepCopy ¶
func (in *StateMachineInitParameters) DeepCopy() *StateMachineInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineInitParameters.
func (*StateMachineInitParameters) DeepCopyInto ¶
func (in *StateMachineInitParameters) DeepCopyInto(out *StateMachineInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StateMachineList ¶
type StateMachineList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []StateMachine `json:"items"` }
StateMachineList contains a list of StateMachines
func (*StateMachineList) DeepCopy ¶
func (in *StateMachineList) DeepCopy() *StateMachineList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineList.
func (*StateMachineList) DeepCopyInto ¶
func (in *StateMachineList) DeepCopyInto(out *StateMachineList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*StateMachineList) DeepCopyObject ¶
func (in *StateMachineList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*StateMachineList) GetItems ¶
func (l *StateMachineList) GetItems() []resource.Managed
GetItems of this StateMachineList.
type StateMachineObservation ¶
type StateMachineObservation struct { // The ARN of the state machine. Arn *string `json:"arn,omitempty" tf:"arn,omitempty"` // The date the state machine was created. CreationDate *string `json:"creationDate,omitempty" tf:"creation_date,omitempty"` // The Amazon States Language definition of the state machine. Definition *string `json:"definition,omitempty" tf:"definition,omitempty"` Description *string `json:"description,omitempty" tf:"description,omitempty"` // Defines what encryption configuration is used to encrypt data in the State Machine. For more information see [TBD] in the AWS Step Functions User Guide. EncryptionConfiguration *EncryptionConfigurationObservation `json:"encryptionConfiguration,omitempty" tf:"encryption_configuration,omitempty"` // The ARN of the state machine. ID *string `json:"id,omitempty" tf:"id,omitempty"` // Defines what execution history events are logged and where they are logged. The logging_configuration parameter is valid when type is set to STANDARD or EXPRESS. Defaults to OFF. For more information see Logging Express Workflows, Log Levels and Logging Configuration in the AWS Step Functions User Guide. LoggingConfiguration *LoggingConfigurationObservation `json:"loggingConfiguration,omitempty" tf:"logging_configuration,omitempty"` // Set to true to publish a version of the state machine during creation. Default: false. Publish *bool `json:"publish,omitempty" tf:"publish,omitempty"` // The ARN of the state machine. RevisionID *string `json:"revisionId,omitempty" tf:"revision_id,omitempty"` // The Amazon Resource Name (ARN) of the IAM role to use for this state machine. RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"` // The ARN of the state machine version. StateMachineVersionArn *string `json:"stateMachineVersionArn,omitempty" tf:"state_machine_version_arn,omitempty"` // The current status of the state machine. Either ACTIVE or DELETING. Status *string `json:"status,omitempty" tf:"status,omitempty"` // Key-value map of resource tags. // +mapType=granular Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` // A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block. // +mapType=granular TagsAll map[string]*string `json:"tagsAll,omitempty" tf:"tags_all,omitempty"` // Selects whether AWS X-Ray tracing is enabled. TracingConfiguration *TracingConfigurationObservation `json:"tracingConfiguration,omitempty" tf:"tracing_configuration,omitempty"` // Determines whether a Standard or Express state machine is created. The default is STANDARD. You cannot update the type of a state machine once it has been created. Valid values: STANDARD, EXPRESS. Type *string `json:"type,omitempty" tf:"type,omitempty"` VersionDescription *string `json:"versionDescription,omitempty" tf:"version_description,omitempty"` }
func (*StateMachineObservation) DeepCopy ¶
func (in *StateMachineObservation) DeepCopy() *StateMachineObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineObservation.
func (*StateMachineObservation) DeepCopyInto ¶
func (in *StateMachineObservation) DeepCopyInto(out *StateMachineObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StateMachineParameters ¶
type StateMachineParameters struct { // The Amazon States Language definition of the state machine. // +kubebuilder:validation:Optional Definition *string `json:"definition,omitempty" tf:"definition,omitempty"` // Defines what encryption configuration is used to encrypt data in the State Machine. For more information see [TBD] in the AWS Step Functions User Guide. // +kubebuilder:validation:Optional EncryptionConfiguration *EncryptionConfigurationParameters `json:"encryptionConfiguration,omitempty" tf:"encryption_configuration,omitempty"` // Defines what execution history events are logged and where they are logged. The logging_configuration parameter is valid when type is set to STANDARD or EXPRESS. Defaults to OFF. For more information see Logging Express Workflows, Log Levels and Logging Configuration in the AWS Step Functions User Guide. // +kubebuilder:validation:Optional LoggingConfiguration *LoggingConfigurationParameters `json:"loggingConfiguration,omitempty" tf:"logging_configuration,omitempty"` // Set to true to publish a version of the state machine during creation. Default: false. // +kubebuilder:validation:Optional Publish *bool `json:"publish,omitempty" tf:"publish,omitempty"` // Region is the region you'd like your resource to be created in. // +upjet:crd:field:TFTag=- // +kubebuilder:validation:Required Region *string `json:"region" tf:"-"` // The Amazon Resource Name (ARN) of the IAM role to use for this state machine. // +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/iam/v1beta1.Role // +crossplane:generate:reference:extractor=github.com/upbound/provider-aws/config/common.ARNExtractor() // +kubebuilder:validation:Optional RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"` // Reference to a Role in iam to populate roleArn. // +kubebuilder:validation:Optional RoleArnRef *v1.Reference `json:"roleArnRef,omitempty" tf:"-"` // Selector for a Role in iam to populate roleArn. // +kubebuilder:validation:Optional RoleArnSelector *v1.Selector `json:"roleArnSelector,omitempty" tf:"-"` // Key-value map of resource tags. // +kubebuilder:validation:Optional // +mapType=granular Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` // Selects whether AWS X-Ray tracing is enabled. // +kubebuilder:validation:Optional TracingConfiguration *TracingConfigurationParameters `json:"tracingConfiguration,omitempty" tf:"tracing_configuration,omitempty"` // Determines whether a Standard or Express state machine is created. The default is STANDARD. You cannot update the type of a state machine once it has been created. Valid values: STANDARD, EXPRESS. // +kubebuilder:validation:Optional Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*StateMachineParameters) DeepCopy ¶
func (in *StateMachineParameters) DeepCopy() *StateMachineParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineParameters.
func (*StateMachineParameters) DeepCopyInto ¶
func (in *StateMachineParameters) DeepCopyInto(out *StateMachineParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StateMachineSpec ¶
type StateMachineSpec struct { v1.ResourceSpec `json:",inline"` ForProvider StateMachineParameters `json:"forProvider"` // THIS IS A BETA FIELD. It will be honored // unless the Management Policies feature flag is disabled. // InitProvider holds the same fields as ForProvider, with the exception // of Identifier and other resource reference fields. The fields that are // in InitProvider are merged into ForProvider when the resource is created. // The same fields are also added to the terraform ignore_changes hook, to // avoid updating them after creation. This is useful for fields that are // required on creation, but we do not desire to update them after creation, // for example because of an external controller is managing them, like an // autoscaler. InitProvider StateMachineInitParameters `json:"initProvider,omitempty"` }
StateMachineSpec defines the desired state of StateMachine
func (*StateMachineSpec) DeepCopy ¶
func (in *StateMachineSpec) DeepCopy() *StateMachineSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineSpec.
func (*StateMachineSpec) DeepCopyInto ¶
func (in *StateMachineSpec) DeepCopyInto(out *StateMachineSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StateMachineStatus ¶
type StateMachineStatus struct { v1.ResourceStatus `json:",inline"` AtProvider StateMachineObservation `json:"atProvider,omitempty"` }
StateMachineStatus defines the observed state of StateMachine.
func (*StateMachineStatus) DeepCopy ¶
func (in *StateMachineStatus) DeepCopy() *StateMachineStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineStatus.
func (*StateMachineStatus) DeepCopyInto ¶
func (in *StateMachineStatus) DeepCopyInto(out *StateMachineStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TracingConfigurationInitParameters ¶
type TracingConfigurationInitParameters struct { // When set to true, AWS X-Ray tracing is enabled. Make sure the State Machine has the correct IAM policies for logging. See the AWS Step Functions Developer Guide for details. Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` }
func (*TracingConfigurationInitParameters) DeepCopy ¶
func (in *TracingConfigurationInitParameters) DeepCopy() *TracingConfigurationInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TracingConfigurationInitParameters.
func (*TracingConfigurationInitParameters) DeepCopyInto ¶
func (in *TracingConfigurationInitParameters) DeepCopyInto(out *TracingConfigurationInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TracingConfigurationObservation ¶
type TracingConfigurationObservation struct { // When set to true, AWS X-Ray tracing is enabled. Make sure the State Machine has the correct IAM policies for logging. See the AWS Step Functions Developer Guide for details. Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` }
func (*TracingConfigurationObservation) DeepCopy ¶
func (in *TracingConfigurationObservation) DeepCopy() *TracingConfigurationObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TracingConfigurationObservation.
func (*TracingConfigurationObservation) DeepCopyInto ¶
func (in *TracingConfigurationObservation) DeepCopyInto(out *TracingConfigurationObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TracingConfigurationParameters ¶
type TracingConfigurationParameters struct { // When set to true, AWS X-Ray tracing is enabled. Make sure the State Machine has the correct IAM policies for logging. See the AWS Step Functions Developer Guide for details. // +kubebuilder:validation:Optional Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` }
func (*TracingConfigurationParameters) DeepCopy ¶
func (in *TracingConfigurationParameters) DeepCopy() *TracingConfigurationParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TracingConfigurationParameters.
func (*TracingConfigurationParameters) DeepCopyInto ¶
func (in *TracingConfigurationParameters) DeepCopyInto(out *TracingConfigurationParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.