Module: Aws::B2bi::Types

Defined in:
gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb

Defined Under Namespace

Classes: AccessDeniedException, CapabilityConfiguration, CapabilitySummary, ConflictException, CreateCapabilityRequest, CreateCapabilityResponse, CreatePartnershipRequest, CreatePartnershipResponse, CreateProfileRequest, CreateProfileResponse, CreateTransformerRequest, CreateTransformerResponse, DeleteCapabilityRequest, DeletePartnershipRequest, DeleteProfileRequest, DeleteTransformerRequest, EdiConfiguration, EdiType, GetCapabilityRequest, GetCapabilityResponse, GetPartnershipRequest, GetPartnershipResponse, GetProfileRequest, GetProfileResponse, GetTransformerJobRequest, GetTransformerJobResponse, GetTransformerRequest, GetTransformerResponse, InternalServerException, ListCapabilitiesRequest, ListCapabilitiesResponse, ListPartnershipsRequest, ListPartnershipsResponse, ListProfilesRequest, ListProfilesResponse, ListTagsForResourceRequest, ListTagsForResourceResponse, ListTransformersRequest, ListTransformersResponse, PartnershipSummary, ProfileSummary, ResourceNotFoundException, S3Location, ServiceQuotaExceededException, StartTransformerJobRequest, StartTransformerJobResponse, Tag, TagResourceRequest, TestMappingRequest, TestMappingResponse, TestParsingRequest, TestParsingResponse, ThrottlingException, TransformerSummary, UntagResourceRequest, UpdateCapabilityRequest, UpdateCapabilityResponse, UpdatePartnershipRequest, UpdatePartnershipResponse, UpdateProfileRequest, UpdateProfileResponse, UpdateTransformerRequest, UpdateTransformerResponse, ValidationException, X12Details

Instance Attribute Summary collapse

Instance Attribute Details

#ediTypes::EdiConfiguration

An EDI (electronic data interchange) configuration object.



41
42
43
44
45
46
47
48
49
50
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 41

class CapabilityConfiguration < Struct.new(
  :edi,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Edi < CapabilityConfiguration; end
  class Unknown < CapabilityConfiguration; end
end

#x12_detailsTypes::X12Details

Returns the details for the EDI standard that is being used for the transformer. Currently, only X12 is supported. X12 is a set of standards and corresponding messages that define specific business documents.

Returns:



623
624
625
626
627
628
629
630
631
632
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 623

class EdiType < Struct.new(
  :x12_details,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class X12Details < EdiType; end
  class Unknown < EdiType; end
end